
/* ============================================================
   4. WHATSAPP WIDGET
   ============================================================ */
.wa-button {
  position: fixed;
  left: 20px; bottom: 20px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: 0.35s;
  animation: waPulse 2s infinite;
  -webkit-tap-highlight-color: transparent;
}
.wa-button:hover { transform: translateY(-5px) scale(1.08); }
.wa-button:active { transform: scale(0.95); }
.wa-button i { font-size: 30px; color: #fff; }

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-tooltip {
  position: absolute;
  left: 74px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.wa-button:hover .wa-tooltip { opacity: 1; }

.wa-popup {
  position: fixed;
  left: 16px; right: 16px; bottom: 90px;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  z-index: 99999;
  max-height: 85vh;
  animation: waPopupIn 0.3s ease;
}
.wa-popup.show { display: flex !important; }

@keyframes waPopupIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.wa-header {
  background: #25D366;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}
.wa-profile { display: flex; align-items: center; gap: 10px; }
.wa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.wa-avatar i { font-size: 22px; color: #25D366; }
.wa-profile h3 { font-size: 14px; font-weight: 700; margin-bottom: 2px; line-height: 1.2; }
.wa-profile p { font-size: 11px; opacity: 0.9; line-height: 1.3; }
.wa-close { border: none; background: none; color: #fff; font-size: 26px; cursor: pointer; padding: 4px 8px; line-height: 1; -webkit-tap-highlight-color: transparent; }

.wa-content { padding: 16px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.wa-content h4 { margin-bottom: 8px; font-size: 16px; line-height: 1.3; }
.wa-content p { font-size: 13px; color: #666; margin-bottom: 14px; line-height: 1.5; }
.wa-content input, .wa-content textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.wa-content textarea { height: 90px; resize: none; }
.wa-content input:focus, .wa-content textarea:focus { border-color: #25D366; box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12); }

.wa-send {
  width: 100%;
  padding: 14px;
  border: none;
  background: #25D366;
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wa-send:hover { background: #1ebe5d; }
.wa-send:active { transform: scale(0.98); }
.wa-send i { font-size: 18px; }

@media (min-width: 769px) {
  .wa-popup { left: 25px; right: auto; width: 360px; bottom: 105px; max-height: none; }
  .wa-content { overflow-y: visible; }
}

@media (max-width: 768px) {
  .wa-button { left: 16px; bottom: 16px; width: 56px; height: 56px; }
  .wa-button i { font-size: 28px; }
  .wa-popup { left: 12px; right: 12px; bottom: 84px; border-radius: 18px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 413px) {
  .wa-button { left: 12px; bottom: 14px; width: 52px; height: 52px; }
  .wa-button i { font-size: 26px; }
  .wa-popup { left: 8px; right: 8px; bottom: 78px; max-height: 80vh; }
  .wa-header { padding: 12px 14px; }
  .wa-avatar { width: 38px; height: 38px; }
  .wa-avatar i { font-size: 20px; }
  .wa-profile h3 { font-size: 13px; }
  .wa-profile p { font-size: 11px; }
  .wa-content { padding: 14px 12px; }
  .wa-content h4 { font-size: 15px; }
  .wa-content p { font-size: 12px; margin-bottom: 12px; }
  .wa-content input, .wa-content textarea { padding: 11px 12px; margin-bottom: 8px; font-size: 16px; border-radius: 10px; }
  .wa-content textarea { height: 80px; }
  .wa-send { padding: 12px; font-size: 14px; border-radius: 12px; }
}





/* ============================================================
   5. HOME PAGE
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.8s ease forwards; }
.animate-scale { animation: scaleIn 0.7s ease both; }
.animate-float { animation: float 4s ease-in-out infinite; }

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.1s; }
.delay-3 { animation-delay: 0.15s; }
.delay-4 { animation-delay: 0.2s; }
.delay-5 { animation-delay: 0.25s; }
.delay-6 { animation-delay: 0.3s; }
.delay-7 { animation-delay: 0.35s; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-text h1 span { color: #fcd34d; }

.hero-text p {
  font-size: 1.1rem;
  color: #f1f5f9;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 48px rgba(37, 99, 235, 0.35); background: #1d4ed8; }
.btn-primary:active { transform: scale(0.96); }

.quote-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 40px;
  padding: 40px 36px 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(229, 231, 235, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  animation: fadeInUp 0.8s ease;
  animation-delay: 0.2s;
}
.quote-card:hover { box-shadow: 0 40px 96px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }

.quote-card .quote-header { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.quote-card .quote-header i { font-size: 1.8rem; color: #2563eb; opacity: 0.7; animation: float 4s ease-in-out infinite; }
.quote-card .quote-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}
.quote-card h2 { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; color: #0f172a; }
.quote-card .subhead { color: #475569; margin-bottom: 24px; font-size: 0.95rem; margin-left: 48px; font-weight: 400; opacity: 0.8; }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-weight: 600; font-size: 0.7rem; color: #334155; letter-spacing: 0.03em; text-transform: uppercase; transition: color 0.3s ease; }
.form-group:hover label { color: #2563eb; }
.form-group input, .form-group select {
  padding: 13px 18px;
  border-radius: 18px;
  border: 1.5px solid rgba(229, 231, 235, 0.5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  width: 100%;
}
.form-group input::placeholder { color: #94a3b8; font-weight: 400; }
.form-group input:focus, .form-group select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  background: #ffffff;
  transform: scale(1.01);
}
.form-group input:hover, .form-group select:hover { border-color: #2563eb; }
.form-group.full-width { grid-column: span 2; }

.btn-submit {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-submit:hover::after { opacity: 1; }
.btn-submit:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 16px 44px rgba(37, 99, 235, 0.3); background: #1d4ed8; }
.btn-submit:active { transform: scale(0.97); }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
  .quote-card { max-width: 100%; margin-left: 0; animation: fadeInUp 0.8s ease backwards; animation-delay: 0.2s; }
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; padding: 80px 16px 50px; }
  .hero-bg { object-position: center 25%; }
}

@media (max-width: 640px) {
  .hero { padding: 80px 16px 60px; min-height: 80vh; }
  .hero-text h1 { font-size: 1.9rem; }
  .hero-text p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons a { justify-content: center; }
  .quote-card { padding: 24px 18px; border-radius: 28px; }
  .quote-card h2 { font-size: 1.4rem; }
  .quote-card .subhead { margin-left: 0; font-size: 0.85rem; }
  .quote-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group input, .form-group select { padding: 11px 14px; font-size: 0.85rem; }
  .form-group.full-width { grid-column: span 2; }
  .btn-submit { padding: 14px 20px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; padding: 75px 14px 40px; }
  .hero-bg { object-position: center 20%; }
}

@media (max-width: 420px) {
  .quote-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
}

#packagePage,
#cheapPackagePage,
#allInclusivePage,
#contactPage {
  display: none;
}


